home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- Caption = "fsScroll Demo"
- ClientHeight = 3195
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 4680
- Icon = "Form1.frx":0000
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.Menu mnu_File
- Caption = "&File"
- Begin VB.Menu mnuF_Exit
- Caption = "E&xit"
- End
- End
- Begin VB.Menu mnu_Sample
- Caption = "&Samples"
- Begin VB.Menu mnuS_LargeDateEntry
- Caption = "&Large Data Entry..."
- End
- Begin VB.Menu mnuS_ScrollOrderForm
- Caption = "&Scrolling Order Form..."
- End
- Begin VB.Menu mnuS_Lists
- Caption = "Lis&ts..."
- End
- Begin VB.Menu mnuS_Resize
- Caption = "&Resize..."
- End
- Begin VB.Menu mnuS_MScroll
- Caption = "&Manual Scroll"
- End
- Begin VB.Menu mnuS_AutoMScroll
- Caption = "&Auto Mouse Scroll"
- End
- Begin VB.Menu mnuS_ClipCursor
- Caption = "&Clip Cursor"
- End
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub mnuF_Exit_Click()
- Unload Me
- End Sub
- Private Sub mnuS_AutoMScroll_Click()
- frmAuto.Show
- End Sub
- Private Sub mnuS_ClipCursor_Click()
- frmClipCursor.Show
- End Sub
- Private Sub mnuS_LargeDateEntry_Click()
- frmLarge.Show
- End Sub
- Private Sub mnuS_Lists_Click()
- frmLists.Show
- End Sub
- Private Sub mnuS_MScroll_Click()
- frmManualScroll.Show
- End Sub
- Private Sub mnuS_Resize_Click()
- frmResize.Show
- End Sub
- Private Sub mnuS_ScrollOrderForm_Click()
- frmOrder.Show
- End Sub
-